home *** CD-ROM | disk | FTP | other *** search
- /* %filename% -- window class */
- /* Created %date% %time% by AppMaker */
-
- #define _H_z%WindName%
-
- #include <CWindow.h>
-
- class CBureaucrat;
- class CPane;
- class CPanorama;
- class CDirector;
- class C%appname%Data;
-
- %for each item gen classDecl%
-
- /*----------*/
- class Z%WindName% : public CWindow {
- public:
- CPane *itsMainPane;
-
- virtual void IZ%WindName%% %(CDirector *aSupervisor);
- %for each item gen zAuxiliaryMethod.decl%
-
- void DoCommand (long theCommand); // is override
-
- protected:
- /* Panes in this window: */
- %for each item gen instance%
-
- }; /* Z%WindName% */
-